home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / mus / play / EP_Polski.lha / Polski / Install next >
Text File  |  1999-01-22  |  3KB  |  99 lines

  1. ; This Installer(TM) script installs the separately distributed
  2. ; catalogs to your hard disk
  3. ; © 1998 DEFECT Softworks, All rights reserved.
  4. ;
  5. ; Written by Henryk Richter
  6. ; Date: 16/Apr/98
  7.  
  8. (set #EP_Version (cat "2.01"))                    ;Eagleplayer Version
  9. (set #Space (cat "40"))                            ;KiloBytes needed for
  10.                                                 ;installation.
  11. (set KickVersion (/ (getversion) 65536))
  12. (debug "Kickversion:" Kickversion)
  13.  
  14. ;=========================== English texts ==================================
  15. (set #EPNotFound
  16. (cat "Eagleplayer2: - Assign not found, please Install Eagleplayer V"
  17.      #EP_Version
  18.      " first."
  19. ))
  20.  
  21. (Set #intro
  22. (cat "This procedurce lets you install the catalogs for Eagleplayer V"
  23.      #EP_Version
  24.      " on your hard drive. \n\n"
  25.      " Please make sure you`ve installed Eagleplayer before doing this step.\n\n"
  26.      "For installing of this "
  27.      "package you need about "
  28.      #Space
  29.      " kBytes free space on your harddisk. \n\n\n"
  30.      "Thanks to the ATO members for translating our texts."
  31. ))
  32.  
  33.  
  34. ;=========================== Polski tekst ===================================
  35. ;                  tîumaczenie Don Adan/Wanted Team
  36. (if (= @language "Polski")
  37. (
  38.  
  39. (set #EPNotFound
  40. (cat "Nie znaleziono przypisania Eagleplayer2: ,\n"
  41.      "proszë najpierw zainstalowaê EaglePlayera V"
  42.      #EP_Version
  43.      "."
  44.      
  45. ))
  46.  
  47. (Set #intro
  48. (cat "Ta procedura sîuûy do instalacji katalogów jëzykowych EaglePlayera V"
  49.      #EP_Version
  50.      " na Twoim twardym dysku. \n\n"
  51.      " Proszë sië upewniê, ûe masz zainstalowanego EaglePlayera zanim"
  52.      " uczynisz nastëpny krok.\n\n"
  53.      "W celu zainstalowania tego "
  54.      "pakietu potrzebujesz "
  55.      #Space
  56.      " kilobajtów wolnego miejsca na Twym twardym dysku. \n\n\n"
  57.      "Podziëkowania dla czîonków ATO za przetîumaczenie naszych tekstów."
  58. ))
  59.  
  60. )
  61. )
  62.  
  63. ;============================== Welcome the User ===========================
  64.  
  65. (complete 0)
  66.  
  67. ;(welcome)
  68. (message #intro)
  69.  
  70. ;====== get target directory where the Eagleplayer is to be installed =====
  71. ;=================== ask for the Iconset to install ================================
  72.  
  73.     (set yo (exists ("Eagleplayer2:") (noreq)))
  74.     (debug "Eagleplayer2 gefunden: " yo)
  75.  
  76.     (if (= yo 0)
  77.      (
  78.       (abort #EPNotFound)
  79.      )
  80.     )
  81.       
  82.     (set target "Eagleplayer2:")
  83.     (set @default-dest "Eagleplayer2:")
  84.  
  85.     (debug "Ziel:" target)
  86.  
  87. ;=========== copy Players,Engines, Catalogs, Docs, Goodies, Developer, Rexxscripts ==
  88.  
  89.     (copyfiles (source ("Catalogs"))
  90.                (dest (tackon target "Catalogs"))
  91.                (all)
  92.                (optional "force" "nofail")
  93.     )
  94.  
  95.     (complete 100)
  96.  
  97. ;========================== done =============================================
  98. (exit)
  99.